home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / sbin / popcon-largest-unused < prev    next >
Text File  |  2009-06-16  |  540b  |  19 lines

  1. #!/bin/sh
  2. #
  3. # Author: Yann Dirson <dirson@debian.org>
  4. # License: GPL
  5.  
  6. datafile=/var/log/popularity-contest
  7.  
  8. if [ ! -e $datafile ] ; then
  9.     echo "warning: Missing required file $datafile."
  10.     echo "info:    Run 'popularity-contest > $datafile' to generate it."
  11.     exit 1
  12. fi
  13.  
  14. grep '<OLD>' $datafile | cut -d' ' -f3 |
  15.   xargs apt-cache -o 'APT::Cache::AllVersions=0' show |
  16.   grep -E '^(Package|Installed-Size): ' |
  17.   perl -ne 'if (/^Package: (.*)/) { $p = $1 };  if (/^Installed-Size: (.*)/) { print "$1 $p\n"; $p = 'BUG' }' |
  18.   sort -rn
  19.